home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / window / winclip / walloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-26  |  459 b   |  31 lines

  1. /*** WALLOC.H ***/
  2.  
  3. /* Written By P.A. McKenzie
  4.  * The C Window Library
  5.  * Copyright (C) 1990   All Rights Reserved
  6. */
  7. #ifndef WALLOC_DEF
  8. #define WALLOC_DEF
  9.  
  10. #if defined (__TURBOC__)
  11.   #include <alloc.h>
  12. #endif
  13.  
  14. #if defined (LATTICE)
  15.   #include <stdlib.h>
  16. #endif
  17.  
  18. #if defined (MSC) || (POWERC)
  19. # include <malloc.h>
  20. #ifndef NULL
  21. # define NULL ((char *)0)
  22. #endif
  23. #endif
  24.  
  25. #if defined (__ZTC__)
  26. # include <stdlib.h>
  27. #endif
  28.  
  29.  
  30. #endif
  31.